home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-11-05 | 2.6 KB | 57 lines | [TEXT/KAHL] |
- @0 JMP send /* sends text to the user */
- @1 JMP print /* sends text only to the sysop screen */
- @2 JMP sendtext /* sends a text file like ":folder1:myfile.txt" */
- @3 JMP wait /* Use this to delay int secs "wait(secs)" */
- @4 JMP cmd1 /* Sends the string then gets ONE character in input */
- @5 JMP cmd1noecho /* Sends the string, then waits for 1 character */
- /* Does not echo the character ! */
- @6 JMP sendnc /* send a line without checking for controls */
- @7 JMP showline /* shows the whole line to the mac screen */
- @8 JMP clock /* the Mac trap CLOCK() */
- /* puts it in input [G->u] */
- @9 JMP portsin /* get a line of input max. chars long "portsin(buf,max)" */
- /* YOU supply the buffer to put it in, max is a int */
- @10 JMP passportsin /* get a line of input max. chars long FOR PASWORDS */
- /* sends a * for each character "passportsin(buf,max)" */
- @11 JMP module /* call a module by name, and what mode to call it */
- /* get a line of input max. chars long "module(mode,name)" */
- @12 JMP gettime /* returns the time / date how ever you want */
- /* use the format string from "strftime" */
- @13 JMP switchuser /* call this to switch over to another user (done at input routines) */
- /* DO NOT CALL THIS ! It's done for you */
-
- @14 JMP fopen /* These are calls to stdio routines that arn't */
- @15 JMP fclose /* included in ANSI-MUBBS, see the Think C Reference manual */
- @16 JMP fread /* " " */
- @17 JMP fwrite /* " " */
- @18 JMP ftell /* " " */
- @19 JMP fsetpos /* " " */
- @20 JMP fgetpos /* " " */
- @21 JMP fseek /* " " */
- @22 JMP freopen /* " " */
- @23 JMP fputs /* " " */
- @24 JMP fputc /* " " */
- @25 JMP fgetc /* " " */
- @26 JMP fgets /* " " */
- @27 JMP fflush /* " " */
- @28 JMP fprintf /* " " */
- @29 JMP fscanf /* " " */
- @30 JMP clearerr /* " " */
- @31 JMP scanf /* " " */
- @32 JMP sscanf /* " " */
- @33 JMP sprintf /* " " */
- @34 JMP rewind /* " " */
- @35 JMP rename /* " " */
- @36 JMP remove /* " " */
- @37 JMP ungetc /* " " */
- @38 JMP puts /* " " */
- @39 JMP perror /* " " */
- @40 JMP otheruser /* call this to switch over to another user when in a long loop */
- /* that doesn't "send" or "input" anything, call this as much as you want */
- @41 JMP mackey /* get a key from the mac keyboard, return TRUE if there is one */
- /* this is done for you in "in", but just in case you want to read it */
- @42 JMP loguser /* call with the User's location, writes to a log file if */
- /* logmode is > 1, no more than 64 characters allowed ! */
- @43 JMP printout /* sends to the Monitor screen regardless of the setting of G->noprint */
- @44 JMP versionck /* checks the version of MUBBS against whatever you specify */
-